From: Jim Blandy Date: Sat, 19 Jun 1993 01:04:50 +0000 (+0000) Subject: * fileio.c (Fset_visited_file_modtime): We're only passing two X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95231 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=76c881b0156bf38c188aec63909b228212088267;p=emacs.git * fileio.c (Fset_visited_file_modtime): We're only passing two arguments to the file name handler; use call2, not call3. --- diff --git a/src/fileio.c b/src/fileio.c index d21007a7ce8..41838f0937e 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -2941,7 +2941,7 @@ An argument specifies the modification time value to use\n\ handler = Ffind_file_name_handler (filename); if (!NILP (handler)) /* The handler can find the file name the same way we did. */ - return call3 (handler, Qset_visited_file_modtime, Qnil); + return call2 (handler, Qset_visited_file_modtime, Qnil); else if (stat (XSTRING (filename)->data, &st) >= 0) current_buffer->modtime = st.st_mtime; }